home *** CD-ROM | disk | FTP | other *** search
/ BMUG Revelations / BMUG Revelations.toast / Telecom / Compression Programs / UnZip Mac 4.2 / Source / unzip.1 < prev    next >
Encoding:
Text File  |  1992-03-19  |  2.9 KB  |  82 lines  |  [TEXT/MPS ]

  1. .TH unzip 1 "UnZip version 4.2"
  2. .SH NAME
  3. unzip - list/test/extract from a ZIP archive file
  4. .SH SYNOPSIS
  5. unzip [ -cflptuvxz[ajnoqUV] ] file[.zip] [filespec...]
  6. .SH ARGUMENTS
  7. .in +12
  8. .ti -12
  9. file[.zip]  Path of the ZIP archive.  The suffix ``.zip'' is applied
  10. if the file specified does not exist.  Note that
  11. self-extracting ZIP files are supported; just specify
  12. the ``.exe'' suffix yourself.
  13. .sp 1
  14. .ti -12
  15. [filespec]  An optional list of archive members to be processed.
  16. Expressions may be used to match multiple members; be sure to quote
  17. expressions that contain characters interpreted by the operating
  18. system. See DESCRIPTION (below) for more details.
  19. .SH OPTIONS
  20. .nf
  21. -c   extract files to stdout/screen (``CRT'')
  22. -f   freshen existing files (replace if newer); create none
  23. -l   list archive files (short format)
  24. -p   extract files to pipe; no informational messages
  25. -t   test archive files
  26. -u   update existing files; create new ones if needed
  27. -v   list archive files (verbose format)
  28. -x   extract files in archive (default)
  29. -z   display only the archive comment
  30. .fi
  31. .SH MODIFIERS
  32. .nf
  33. -a   convert to MS-DOS textfile format (CR LF), Mac format (CR),
  34.        Unix/VMS format (LF), OR from ASCII to EBCDIC, depending on 
  35.        your system (only use for TEXT files!)
  36. -j   junk paths (don't recreate archive's directory structure)
  37. -n   never overwrite existing files; don't prompt
  38. -o   OK to overwrite files without prompting
  39. -q   perform operations quietly (-qq => even quieter)
  40. -s   [OS/2, MS-DOS] allow spaces in filenames (e.g., "EA DATA. SF")
  41. -U   leave filenames uppercase if created under MS-DOS, VMS, etc.
  42. -V   retain (VMS) file version numbers
  43. -X   [VMS] restore owner/protection info (may require privileges)
  44. .fi
  45. .SH DESCRIPTION
  46. .B unzip
  47. will list, test, or extract from a ZIP archive, commonly found on MSDOS
  48. systems.
  49. Archive member extraction is implied by the absence of the -c, -p, -t, 
  50. -l, -v or -z options.  All archive members are processed unless a
  51. .B filespec
  52. is provided to specify a subset of the archive members.
  53. The
  54. .B filespec
  55. is similar to an egrep expression, and may contain:
  56. .sp 1
  57. .in +8
  58. .ti -8
  59. *       matches a sequence of 0 or more characters
  60. .ti -8
  61. ?       matches exactly 1 character
  62. .ti -8
  63. \\nnn    matches the character having octal code nnn
  64. .ti -8
  65. [...]   matches any single character found inside the brackets; ranges
  66. are specified by a beginning character, a hyphen, and an ending
  67. character.  If a '!' follows the left bracket, then the range
  68. of characters matched is complemented with respect to the ASCII
  69. character set.
  70. .SH VERSIONS
  71. .nf
  72. v1.2   3/15/89    Samuel H. Smith
  73. v2.0   9/9/89     Samuel H. Smith
  74. v2.x   fall 1989  many Usenet contributors
  75. v3.0   5/1/90     Info-ZIP workgroup (David Kirschbaum, consolidator)
  76. v3.1   8/15/90    Info-ZIP
  77. v4.0   12/1/90    Info-ZIP
  78. v4.1   5/12/91    Info-ZIP
  79. v4.2   3/20/92    Info-ZIP (zip-bugs subgroup)
  80. v5.0   ~4/92      Info-ZIP (zip-bugs subgroup) [will have deflation!]
  81. .fi
  82.